home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / PowerPlant / LProgressIndicator & Friends / Threads App Source / CProducerThread.h < prev    next >
Encoding:
Text File  |  1996-03-27  |  599 b   |  24 lines  |  [TEXT/CWIE]

  1. // =================================================================================
  2. //    CProducerThread.h                     ©1996 Metrowerks Inc. All rights reserved.
  3. // =================================================================================
  4.  
  5. #pragma once
  6.  
  7. #include <LThread.h>
  8.  
  9. class LSharedQueue;
  10. class LThermometerPane;
  11.  
  12. class CProducerThread : public LThread {
  13. public:
  14.                         CProducerThread( LSharedQueue *inQueue,
  15.                             LThermometerPane *inProgressPane );
  16.     virtual                ~CProducerThread();
  17.  
  18. protected:
  19.     LSharedQueue *        mQueue;
  20.     LThermometerPane *        mProgressPane;
  21.     
  22.     virtual void *        Run( void );
  23. };
  24.